home *** CD-ROM | disk | FTP | other *** search
/ Computer Select (Limited Edition) / Computer Select.iso / pcc / v04n08 / wrksmt.exe / FORM.BAT < prev    next >
DOS Batch File  |  1991-06-10  |  463b  |  21 lines

  1. @ECHO OFF
  2. IF %1&==& GOTO NODISK
  3. FOR %%D IN (a: A: b: B:) DO IF %1 == %%D GOTO OKAY
  4. GOTO BADNAME
  5. :OKAY
  6. C:\DOS\FORMAT %1 %2 %3 %4 %5
  7. GOTO END
  8. :NODISK
  9. ECHO %0 - Problem! I don't know which
  10. ECHO disk drive to format! 
  11. ECHO Run %0 again
  12. ECHO but please tell me
  13. ECHO the floppy disk to format
  14. GOTO END
  15. :BADNAME
  16. ECHO %0 - Problem! Can't format %1!
  17. ECHO Run %0 again but please tell me
  18. ECHO the floppy disk to format,
  19. ECHO such as %0 A: or %0 B:
  20. :END
  21.